.header {
  top: 72px;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.header__container {
  max-width: 1167px;
}

.header__row {
  align-items: center;
}

.header__nav,
.header__row {
  display: flex;
  justify-content: space-between;
}

.header__nav {
  width: 100%;
  max-width: 468px;
}

.header__link {
  font-family: Ubuntu;
  font-size: .75rem;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

@media (max-width:1135px) {
  .header__container {
    padding: 0 15px;
  }
}

@media (max-width:992px) {
  .header__nav {
    max-width: 400px;
  }
}

@media (max-width:767px) {
  .header__logo img {
    width: 75%;
  }

  .header__link {
    font-size: 2rem;
    color: #000;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 50px;
    height: 40px;
    z-index: 10;
  }

  .header__burger:after,
  .header__burger:before {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    transition: all .3s ease;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger span {
    top: 18px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    transition: all .3s ease;
  }

  .header__burger.active:before {
    transform: rotate(45deg);
    top: 18px;
  }

  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 18px;
  }

  .header__burger.active span {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70%;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 0;
    padding: 0 30px;
    align-items: start;
    border-radius: 0;
    right: -100%;
    transition: all .3s ease;
    z-index: -1;
    background-color: #fff;
    margin-top: 140px;
  }

  .header__nav.active {
    top: 0;
    right: 0;
  }
}